home *** CD-ROM | disk | FTP | other *** search
/ 9-Digit Zip Code Directory / 9-Digit Zip Code Directory (American Business Information) (ABIZIP-12).ISO / z4src.zip / CINDEXGV.H < prev    next >
Text File  |  1989-08-29  |  2KB  |  42 lines

  1. /*  cindexgv.h  global variables for C-Index
  2.  *   ---------------------------------------------------------
  3.  *  |  C-INDEX/PC                                             |
  4.  *  |  C-INDEX for Turbo C                                    |
  5.  *  |  C-INDEX for Microsoft C                                |
  6.  *  |  Version 3.3                                            |
  7.  *  |                                                         |
  8.  *  |  Trio Systems                                           |
  9.  *  |  953 E. Colorado Bl. Suite 531                          |
  10.  *  |  Pasadena, CA  91106                                    |
  11.  *  |  818/798-5567                                           |
  12.  *  |                                                         |
  13.  *  |  (c) Copyright 1983, 1984, 1985, 1986, 1987, 1988, 1989 |
  14.  *   ---------------------------------------------------------
  15.  */
  16.  
  17. /* global variables */
  18.  
  19. #ifdef MAINMOD    /* basic module - read only */
  20.  
  21. int errcde;            /* global error code */
  22. struct node nodea;        /* node to do all operations in */
  23. struct node nodeb;        /* node b in split */
  24. struct node ebuffer;        /* for use by extend */
  25. int path[20];            /* path of tree search */
  26.  
  27. struct bcb *topbcb;        /* top bcb in chain */
  28. static struct bcb *curbcb;    /* work bcb pointer for search    */
  29. static struct bcb *prvbcb;    /* previous bcb pointer in search */
  30.  
  31. #else
  32.  
  33. extern int errcde;        /* global error code */
  34. extern struct node nodea;    /* node to do all operations in */
  35. extern struct node nodeb;    /* node b in split */
  36. extern struct node ebuffer;    /* for use by extend */
  37. extern int path[20];        /* path of tree search */
  38.  
  39. extern struct bcb *topbcb;    /* top bcb in chain */
  40.  
  41. #endif
  42.